(internal-find-face, internal-get-face): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 1 Feb 2007 00:35:40 +0000 (00:35 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 1 Feb 2007 00:35:40 +0000 (00:35 +0000)
lisp/faces.el

index 53e3b004533a8f1126cd0ac587c3ceaa76e84626..6cf5d4f4d1caf51653f9cdb557bd0c52f041bf06 100644 (file)
@@ -181,20 +181,16 @@ to NEW-FACE on frame NEW-FRAME."
 (defun internal-find-face (name &optional frame)
   "Retrieve the face named NAME.
 Return nil if there is no such face.
-If the optional argument FRAME is given, this gets the face NAME for
-that frame; otherwise, it uses the selected frame.
-If FRAME is the symbol t, then the global, non-frame face is returned.
-If NAME is already a face, it is simply returned."
+If NAME is already a face, it is simply returned.
+The optional argument FRAME is ignored."
   (facep name))
 (make-obsolete 'internal-find-face 'facep "21.1")
 
 
 (defun internal-get-face (name &optional frame)
   "Retrieve the face named NAME; error if there is none.
-If the optional argument FRAME is given, this gets the face NAME for
-that frame; otherwise, it uses the selected frame.
-If FRAME is the symbol t, then the global, non-frame face is returned.
-If NAME is already a face, it is simply returned."
+If NAME is already a face, it is simply returned.
+The optional argument FRAME is ignored."
   (or (facep name)
       (check-face name)))
 (make-obsolete 'internal-get-face "see `facep' and `check-face'." "21.1")